15. Radar Measurements
Radar Measurements
H versus h(x)
The matrix from the lidar lesson and equations from the radar lesson are actually accomplishing the same thing; they are both needed to solve in the update step.
But for radar, there is no matrix that will map the state vector into polar coordinates; instead, you need to calculate the mapping manually to convert from cartesian coordinates to polar coordinates.
Here is the function that specifies how the predicted position and speed get mapped to the polar coordinates of range, bearing and range rate.
Hence for radar becomes .
Definition of Radar Variables
- The range, ( ), is the distance to the pedestrian. The range is basically the magnitude of the position vector which can be defined as .
- . Note that is referenced counter-clockwise from the x-axis, so from the video clip above in that situation would actually be negative.
- The range rate, , is the projection of the velocity, , onto the line, .
Deriving the Radar Measurement Function
The measurement function is composed of three components that show how the predicted state, , is mapped into the measurement space, :
The range, , is the distance to the pedestrian which can be defined as:
is the angle between and the direction and can be defined as:
There are two ways to do the range rate derivation:
Generally we can explicitly describe the range, , as a function of time:
The range rate, , is defined as time rate of change of the range, , and it can be described as the time derivative of :
is nothing else than , similarly is . So we have:
For simplicity we just use the following notation:
The range rate, , can be seen as a scalar projection of the velocity vector, , onto . Both and are 2D vectors defined as:
The scalar projection of the velocity vector onto is defined as:
where is the length of . In our case it is actually the range, so .
The Next Quiz
is a nonlinear function. In the next quiz I would like to check your intuition about what that means.